-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding VersionStream for percona-server-9.0 #35288
Conversation
Gen AI suggestions to solve the build error: Based on the error message, I'll provide a detailed analysis and solution: • Detected Error:
• Error Category: Version/Git checkout error • Failure Point: • Root Cause Analysis: • Suggested Fix: - uses: git-checkout
with:
repository: https://github.com/percona/percona-server
tag: PS-9.0.1
expected-commit: d5292ef1219a4bb3dcc788ba6bd2034d0bcf6e3c
recurse-submodules: true Also update the var-transforms section accordingly: var-transforms:
- from: ${{package.version}}
match: '(\d+\.\d+\.\d+)'
replace: 'PS-$1'
to: mangled-package-version • Explanation: • Additional Notes:
• References:
|
Gen AI suggestions to solve the build error: Based on the error output, I can provide a specific analysis and solution: • Detected Error:
• Error Category: Version/Git checkout • Failure Point: Git checkout step trying to fetch tag "Percona-Server-9.0-1" • Root Cause Analysis: • Suggested Fix:
var-transforms:
- from: ${{package.version}}
match: '(\d+\.\d+)\.(\d+)$'
replace: "-$1-$2"
to: mangled-package-version This will transform "9.0.1" into "PS-9.0-1" which matches Percona's tagging convention. • Explanation: • Additional Notes:
• References:
|
No description provided.